@charset "UTF-8";

* {
	box-sizing: border-box;
	outline: none;
  border: none;
	text-decoration: none;
	text-transform: uppercase;
}

html {
	scroll-behavior: smooth;
}

body {
	background: #fff;
}


/* add a thumb */
body::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, 0.3);
	z-index: 99;
}

body::-webkit-scrollbar-thumb {
	background: rgba(250, 250, 250, 0.5);
	z-index: 100;
}

h3 {
	font-size: 3rem;
	font-weight: 700;
  font-family: Georgia, 'Times New Roman', Times, serif;
	text-align: center;
	margin: 0;
	padding-top: 4rem;
	background-color: #666;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	text-shadow: rgba(245, 245, 245, 0.5) 4px 6px 2px;
}

.lines {
  min-width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 3px solid transparent;
  border-image: url("https://www.infocrest.co.jp/ykxbdgs5qgq3/uploads/2019/10/blog_m02_2.jpg");
  border-image-slice: 1;
  border-image-repeat: stretch;
}

.privacy-policy {
  max-width: 100%;
  height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.privacy-policy .card {
	position: relative;
	width: 88%;
	height: 100%;
	margin: 5rem 2rem;
	padding: 2rem;
	box-shadow:  20px 30px 50px rgba(0, 0, 0, 0.6);
	border-radius: 15px;
	background: #f7f7f7;
	display: flex;
	justify-content: center;
  flex-direction: column;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
  overflow: hidden;
}

.privacy-policy .first {
	font-size: 0.7rem;
	margin: 0.5rem 2rem;
}

.privacy-policy__item .privacy-policy__item__title {
	font-size: 0.8rem;
	margin: 0.5rem 0 0.125rem 0.25rem;
}

.privacy-policy__item .privacy-policy__item__desc {
	font-size: 0.6rem;
	margin-bottom: 0.25rem;
}

.privacy-policy__item ol li {
	font-size: 0.6rem;
	margin: 0;
	padding: 0 0 0 0.5rem;
}


/* footer */
.footer {
	min-width: 100%;
	height: 10rem;
	background: #fff;
}

.footer_container {
	position: relative;
	min-width: 100%;
	background: #fff;
	display: flex;
	justify-content: space-between;
	padding: 1rem;
}

.footer_logo {
	color: #000;
	font-size: 1.125rem;
	line-height: 1rem;
	font-weight: 700;
	text-shadow: 0px 5px 15px #666;
	margin: 0;
	padding: 0;
}

.footer_logo:hover {
	color: rgb(228, 59, 250);
	text-decoration: none;
}

.footer_logo span {
	color: rgb(228, 59, 250);
}

/* SNS link */
.footer_social {
	display: flex;
	column-gap: 1.2rem;
	padding: 0 0 0.5rem;
}

.footer_social-link img {
	display: inline-flex;
	max-width: 36px;
	max-height: 36px;
	color: #fff;
	background-color: #000;
	padding: 0.5rem;
	border-radius: 0.25rem;
	font-size: 1.2rem;
	box-shadow: 0px 5px 15px #333;
}

.footer_social-link:hover .line {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(10, 254, 82);
}

.footer_social-link:hover .x {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(67, 247, 238);
}

.footer_social-link:hover .threads {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(254, 243, 255);
}

.footer_social-link:hover .instagram {
	transform: scale(1.2);
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
}

.footer .text p {
	font-size: 0.75rem;
	line-height: 0.5rem;
	color: #000;
	font-weight: 300;
	margin-top: 5rem;
	padding-bottom: 1rem;
	text-align: center;
	text-transform: none;
	text-shadow: 0px 5px 15px #999;
}


/* scrollup */
.scrollup {
	position: fixed;
	right: 1rem; bottom: 5%;
	display: flex;
	background-color: #f7f7f7;
	border-radius: 0.25rem;
	padding: 0.25rem;
	opacity: 0.9;
	z-index: 10;
	transition: 0.4s;
	transition-delay: 2s;
	box-shadow: 0px 5px 15px #333;
}

.scrollup_icon {
	color: #000;
	font-size: 1.2rem;
}

.scrollup:hover {
	text-decoration: none;
	opacity: 1;
	box-shadow: 0px 5px 15px rgb(228, 59, 250);
}

.scrollup_icon:hover {
	color: rgb(228, 59, 250);
}


/* media queries */
@media screen and (max-width: 600px) {
  h3 {
    font-size: 1.5rem;
    padding-top: 2rem;
  }

  .lines {
    margin: 0;
  }

	.privacy-policy {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.privacy-policy .card {
		margin: 2rem 1rem;
		padding: 1rem;
	}

  .privacy-policy .first {
    font-size: 0.5rem;
    margin: 0.5rem;
  }

	.privacy-policy__item__title {
		margin: 0.5rem 0 0.125rem 0.25rem;
	}

	.privacy-policy__item h5 {
		font-size: 0.5rem;
	}

	.privacy-policy__item .privacy-policy__item__desc {
    font-size: 0.2rem;
    margin-bottom: 0.25rem;
  }

  .privacy-policy__item ol li {
    font-size: 0.2rem;
  }

	.scrollup {
		display: none;
	}

	.footer_social {
		row-gap: 0.8rem;
	}

	.footer_social a i {
		font-size: 0.8rem;
	}

	.footer .text p {
		font-size: 0.25rem;
		line-height: 0.2rem;
	}
}


@media screen and (max-width: 400px) {
  .privacy-policy .card{
    margin: 1rem;
  }
}


@media screen and (max-width: 300px) {
	.footer_logo {
		font-size: 1rem;
	}

	.footer_social {
		flex-direction: column;
		row-gap: 0.8rem;
	}

	.footer .text p {
		margin-top: 4rem;
	}
}